/**
 * @author Sujan Basnet
 * @email basnetsujan95@gmail.com
 * @create date 2018-04-10 10:52:57
 * @modify date 2018-04-10 10:52:57
 * @desc [description]
*/
/**
 * @author Sujan Basnet
 * @email basnetsujan95@gmail.com
 * @create date 2018-04-10 10:30:44
 * @modify date 2018-04-10 10:30:44
 * @desc [description]
*/
@import url("https://fonts.googleapis.com/css?family=Raleway");
@font-face {
  font-family: gemunu-libre-extra-bold;
  src: url("../../assets/fonts/gemunulibre/GemunuLibre-ExtraBold.ttf");
}
@font-face {
  font-family: Abeezee;
  src: url("../../assets/fonts/abeezee/ABeeZee-Regular.ttf");
}
@font-face {
  font-family: opensans-light;
  src: url("../../assets/fonts/opensans/OpenSans-Light.ttf");
}
body {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: white;
}

a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 0 1px 0 black;
  box-shadow: 0 0 1px 0 black;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 0px;
}
@media screen and (max-width: 1000px) {
  nav {
    box-sizing: border-box;
    border-bottom: 2px solid #ED1B24;
  }
}

nav > ul {
  display: inline;
  padding: 0px 10px;
  margin: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1000px) {
  nav > ul {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 4;
    order: 4;
    padding: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }
}
nav > ul.dropped {
  max-height: 1000px !important;
  overflow: auto !important;
}
nav > ul > li:hover {
  background-color: #ED1B24;
}
nav > ul > li:hover > a {
  color: white;
}
nav > ul > li {
  float: left;
  list-style-type: none;
  padding: 15px 20px;
  -webkit-transition: background-color 0.6s ease-in;
  transition: background-color 0.6s ease-in;
}
nav > ul > li > a {
  text-decoration: none;
  color: #ED1B24;
  font-family: "Raleway", oxygen, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.8px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 1000px) {
  nav > ul > li > a {
    font-size: 14px;
    padding-left: 25px;
    font-weight: 300;
  }
}
@media screen and (max-width: 1000px) {
  nav > ul > li {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  nav > ul > li:hover {
    background-color: white;
  }
  nav > ul > li > a:hover {
    color: #ED1B24;
  }
}
nav > ul > .navLi.active {
  background-color: #ED1B24;
}
nav > ul > .navLi.active > a {
  color: white;
}
@media screen and (max-width: 1000px) {
  nav > ul > .navLi.active {
    background-color: white;
    font-weight: bold;
  }
  nav > ul > .navLi.active > a {
    color: #ED1B24;
    font-weight: 500;
  }
}
nav > ul > .navLi.onSmallScreen {
  display: none;
}
@media screen and (max-width: 1000px) {
  nav > ul > .navLi.onSmallScreen {
    display: block;
  }
}
nav > button:not(#hambrgr) {
  background-color: transparent;
  opacity: 1;
  padding: 0;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #ED1B24;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  nav > button:not(#hambrgr) {
    background-color: white;
    border: none;
    margin-right: 5px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    order: 3;
  }
}
nav > button:not(#hambrgr) > div {
  color: white;
  font-family: oxygen;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 7px 11px;
}
nav > button:not(#hambrgr) > div:nth-child(2) {
  background-color: #ED1B24;
  border-radius: 0 20px 20px 0px;
}
@media screen and (max-width: 1000px) {
  nav > button:not(#hambrgr) > div:nth-child(2) {
    background-color: white;
    color: #ED1B24;
  }
}
nav > button:not(#hambrgr) > div:nth-child(1) {
  color: #ED1B24;
}
@media screen and (max-width: 1000px) {
  nav > button:not(#hambrgr) > div:nth-child(1) {
    display: none;
  }
}
nav > button#hambrgr {
  display: none;
  height: 20px;
  background-color: transparent;
  border: none;
  margin-left: 10px;
  outline: none;
}
@media screen and (max-width: 1000px) {
  nav > button#hambrgr {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
  }
}
nav > button#hambrgr > div {
  height: 2px;
  width: 25px;
  background-color: #ED1B24;
  border-radius: 10px;
  display: block;
}
nav > #logoWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px;
}
@media screen and (max-width: 1000px) {
  nav > #logoWrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}
nav > #logoWrapper > img {
  height: 40px;
}

/*# sourceMappingURL=cssnew/navigationbar.css.map */
